home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mdbms_overflow.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  77 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10422);
  10.  script_bugtraq_id(1252);
  11.  script_cve_id("CVE-2000-0446");
  12.  script_version ("$Revision: 1.8 $");
  13.  
  14.  
  15.  name["english"] = "MDBMS overflow";
  16.  name["francais"] = "Overflow MDBMS";
  17.  script_name(english:name["english"], francais:name["francais"]);
  18.  
  19.  desc["english"] = "
  20. A beta version of the MDBMS database is running, and it's 
  21. very likely that it is vulnerable to a buffer overflow
  22. (that we did not test for though) which may give a root
  23. shell to anyone.
  24.  
  25. Solution : disable this service if you do not use it or
  26. filter incoming connections to ports 2223 and 2224
  27.  
  28. Risk factor : High";
  29.  
  30.  
  31.  desc["francais"] = "
  32. Une version beta de MDBMS tourne sur ce port, et il est
  33. trΦs probable que celle-ci soit vulnΘrable α un dΘpassement
  34. de buffer permettant α n'importe qui de passer root.
  35.  
  36. Solution : dΘsactivez ce service si vous ne l'utilisez pas
  37. ou filtrez les connections vers les port 2223 et 2224";
  38.  
  39.  script_description(english:desc["english"], francais:desc["francais"]);
  40.  
  41.  summary["english"] = "Checks the remote MDBMS version";
  42.  summary["francais"] = "VΘrifie le numΘro de version du MDBMS distant";
  43.  script_summary(english:summary["english"], francais:summary["francais"]);
  44.  
  45.  script_category(ACT_GATHER_INFO);
  46.  
  47.  
  48.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  49.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  50.  family["english"] = "Gain root remotely";
  51.  family["francais"] = "Passer root α distance";
  52.  script_family(english:family["english"], francais:family["francais"]);
  53.  script_require_ports(2223, 2224);
  54.  exit(0);
  55. }
  56.  
  57.  
  58.  
  59. port = 2224;
  60. if(!get_port_state(port))exit(0);
  61.  
  62. soc = open_sock_tcp(port);
  63. if(!soc){
  64.     port = 2223;
  65.     soc = open_sock_tcp(port);
  66.     if(!soc)exit(0);
  67.     }
  68.  
  69. r = recv_line(socket:soc, length:1024);
  70. close(soc);
  71. if(ereg(pattern:"^.*MDBMS V0\..*", string:r))
  72. {
  73. security_hole(port);
  74. }
  75.  
  76.  
  77.